home *** CD-ROM | disk | FTP | other *** search
Text File | 1994-04-19 | 2.0 KB | 92 lines | [TEXT/MPS ] |
- //# Copyright: © 1993-94 by Apple Computer, Inc., all rights reserved.
- #ifndef _LINKSRC_
- #define _LINKSRC_
-
- #ifndef _LINKSRCB_
- #include "LinkSrcB.idl"
- #endif
-
- //==============================================================================
- // Theory of Operation
- //==============================================================================
-
- /*
- This class is used to represent the source side of OpenDoc links. ODDrafts
- create and own these links. The source ODPart will ask the draft to create
- an ODLinkSource and an ODLink pair, and return the ODLink object to the
- the destination part. The destination part uses the ODLink object to
- extract the contents of the link.
- */
-
- //==============================================================================
- // Classes defined in this interface
- //==============================================================================
-
- interface ODLinkSource;
-
- //==============================================================================
- // Classes used by this interface
- //==============================================================================
-
- interface ODStorageUnit;
- interface ODPart;
- interface ODPartList;
- interface ODLink;
- interface ODDraft;
-
-
- //==============================================================================
- // ODLinkSource
- //==============================================================================
-
- #ifdef _PLATFORM_MACINTOSH_
-
- interface ODLinkSource : ODBaseLinkSource
- {
-
-
-
- #ifdef __SOMIDL__
- implementation
- {
- override:
- somInit,
- somUninit,
- Purge,
- Externalize,
- ReleaseAll,
-
- Lock,
- Unlock,
- GetContentStorageUnit,
- ContentChanged,
- Clear,
- GetChangeID,
- SetAutoUpdate,
- IsAutoUpdate,
- GetLink,
- SetSourcePart,
- ShowSourceContent,
- GetChangeTime,
- CloneTo;
-
- releaseorder:
- reserved1,
- reserved2,
- reserved3,
- reserved4,
- reserved5,
- reserved6,
- reserved7;
-
- majorversion = 1; minorversion = 0;
-
-
- };
- #endif //# __SOMIDL_
- };
-
- #endif //# _PLATFORM_MACINTOSH_
-
- #endif // _LINKSRC_
-